From fe1be7b3a7e73a3096bf65e8d8760071355ae6d7 Mon Sep 17 00:00:00 2001 From: parkrrrr Date: Tue, 23 May 2006 15:07:12 +0000 Subject: [PATCH] fixed error where two escaped backslashes in a row would cause havoc git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2116 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/google.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gpsbabel/google.c b/gpsbabel/google.c index 85dbab357..8633be6ce 100644 --- a/gpsbabel/google.c +++ b/gpsbabel/google.c @@ -313,6 +313,7 @@ google_read(void) end = encoded_points; while ( (end = strstr(end, "\\\\" ))) { memmove( end, end+1, strlen(end)+1 ); + end++; } end = strchr( encoded_levels, '\'' ); if ( end ) { -- 2.30.2